The text-shadow property adds shadow to text.
In its simplest use, you only specify the horizontal shadow (2px) and the vertical shadow (2px):
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
text-shadow: 2px 2px;
}
</style>
</head>
<body>
<h1>ACADEMY OF INFORMATION TECHNOLOGY</h1>
</body>
</html>
Next, add a color (red) to the shadow:
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
text-shadow: 2px 2px red;
}
</style>
</head>
<body>
<h1>ACADEMY OF INFORMATION TECHNOLOGY</h1>
</body>
</html>
Then, add a blur effect (5px) to the shadow:
<!DOCTYPE html>
<html>
<head>
<style>
h1 {
text-shadow: 2px 2px 5px red;
}
</style>
</head>
<body>
<h1>ACADEMY OF INFORMATION TECHNOLOGY</h1>
</body>
</html>